home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / man2html-2.0.2 / examples / man.cgi < prev    next >
Text File  |  1995-06-18  |  562b  |  29 lines

  1. #!/usr/bin/perl
  2. # man.cgi (doesn't use forms)
  3. #
  4. # Program contributed by Maurice Cinquini <mauricec@tplrd.tpl.oz.au>.
  5. #
  6.  
  7. $man_prog = '/usr/ucb/man';
  8.  
  9. print "Content-type: text/html\n\n<ISINDEX>\n";
  10.  
  11. if ($#ARGV < 0) {
  12.     print "<TITLE>UNIX MAN PAGES</TITLE>\n",
  13.           "Use the keyword search field to select a manual page.\n";
  14.     exit;
  15. }
  16.  
  17. $args = join(' ',@ARGV);
  18. open(STDIN, "$man_prog $args|");
  19. @ARGV = (
  20.     '-sun',
  21.     '-seealso',
  22.     '-title', "man $args",
  23.     '-cgiurl', 'man.cgi?$section\L$subsection\E+$title'
  24. );
  25.  
  26. require "perlWWW/man2html";
  27. exit;
  28.  
  29.